home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{B9EBB9B3-9EFA-11D1-8C45-0080AD1CD4EA}#2.1#0"; "msResize.ocx"
- Begin VB.Form Main
- Caption = "msResize product demonstration"
- ClientHeight = 2880
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4695
- Icon = "Sample.frx":0000
- LinkTopic = "Form1"
- ScaleHeight = 2880
- ScaleWidth = 4695
- StartUpPosition = 3 'Windows-Standard
- Begin VB.ListBox List1
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 540
- IntegralHeight = 0 'False
- Left = 1800
- TabIndex = 9
- Tag = "ResizeFont"
- Top = 120
- Width = 1575
- End
- Begin VB.TextBox Text1
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 1095
- Left = 1200
- MultiLine = -1 'True
- TabIndex = 8
- Text = "Sample.frx":0442
- Top = 720
- Width = 2175
- End
- Begin msResize.Resize Resize1
- Left = 3840
- Top = 2040
- _ExtentX = 1005
- _ExtentY = 1005
- Version = "4.4 "
- MinHeight = 3285
- MinWidth = 4815
- End
- Begin VB.OptionButton Option2
- Caption = "Option2"
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 3600
- TabIndex = 7
- Top = 1560
- Width = 855
- End
- Begin VB.OptionButton Option1
- Caption = "Option1"
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 3600
- TabIndex = 6
- Top = 1320
- Value = -1 'True
- Width = 975
- End
- Begin VB.CheckBox Check2
- Caption = "Check2"
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 3600
- TabIndex = 5
- Top = 960
- Width = 975
- End
- Begin VB.CheckBox Check1
- Caption = "Check1"
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 3600
- TabIndex = 4
- Top = 720
- Value = 1 'Aktiviert
- Width = 975
- End
- Begin VB.PictureBox Picture1
- BackColor = &H00808080&
- Height = 550
- Left = 1200
- ScaleHeight = 495
- ScaleWidth = 495
- TabIndex = 3
- Top = 120
- Width = 550
- End
- Begin VB.CommandButton Quit
- Caption = "&Quit"
- BeginProperty Font
- Name = "Arial"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 375
- Left = 3600
- TabIndex = 1
- Top = 120
- Width = 975
- End
- Begin VB.Frame Frame1
- Height = 855
- Left = 120
- TabIndex = 0
- Top = 1920
- Width = 4455
- Begin VB.Label Label1
- Alignment = 2 'Zentriert
- Caption = "No single line of code!"
- BeginProperty Font
- Name = "Arial"
- Size = 15.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 495
- Index = 0
- Left = 120
- TabIndex = 2
- Tag = "ResizeFont"
- Top = 240
- Width = 4215
- End
- End
- Begin VB.Shape Shape3
- BackStyle = 1 'Undurchsichtig
- Height = 615
- Left = 600
- Shape = 2 'Oval
- Top = 1080
- Width = 255
- End
- Begin VB.Shape Shape2
- BackStyle = 1 'Undurchsichtig
- Height = 495
- Left = 360
- Top = 240
- Width = 255
- End
- Begin VB.Line Line3
- X1 = 240
- X2 = 240
- Y1 = 240
- Y2 = 1320
- End
- Begin VB.Line Line2
- X1 = 960
- X2 = 960
- Y1 = 1680
- Y2 = 600
- End
- Begin VB.Line Line1
- X1 = 240
- X2 = 960
- Y1 = 1680
- Y2 = 240
- End
- Begin VB.Shape Shape1
- Height = 1695
- Left = 120
- Top = 120
- Width = 975
- End
- Attribute VB_Name = "Main"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Load()
- Dim i As Integer
- For i = 1 To 100
- List1.AddItem "Samply entry " & CStr(i)
- Next i
- End Sub
- Private Sub Form_Unload(Cancel As Integer)
- Set Main = Nothing
- End Sub
- Private Sub Quit_Click()
- Unload Me
- End Sub
-